home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / amos / AMOS_0795.lzh / AMOSLIST / 000064_amos-request@svcs1.digex.net_Fri Jul 14 21:43:52 1995.msg < prev    next >
Internet Message Format  |  1995-08-04  |  2KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224]) by mail1.access.digex.net (8.6.12/8.6.12) with ESMTP id VAA12595;  for  ; Fri, 14 Jul 1995 21:43:49 -0400
  2. Received: (from daemon@localhost) by svcs1.digex.net (8.6.12/8.6.12) id UAA11322 for amos-out; Fri, 14 Jul 1995 20:37:21 -0400
  3. Received: from mail1.access.digex.net (mail1.access.digex.net [205.197.247.2]) by svcs1.digex.net (8.6.12/8.6.12) with ESMTP id UAA11319 for <amos-list@svcs1.digex.net>; Fri, 14 Jul 1995 20:37:20 -0400
  4. Received: from binx.mbhs.edu (root@binx.mbhs.edu [192.67.131.95]) by mail1.access.digex.net (8.6.12/8.6.12) with ESMTP id UAA07914;  for <amos-list@access.digex.net> ; Fri, 14 Jul 1995 20:37:18 -0400
  5. Received: from dragon.mbhs.edu (dragon.mbhs.edu [192.67.131.57]) by binx.mbhs.edu (8.6.11/8.6.11) with SMTP id UAA31930 for <amos-list@access.digex.net>; Fri, 14 Jul 1995 20:38:53 -0400
  6. From: achurch@dragon.mbhs.edu (Andy Church)
  7. To: amos-list@access.digex.net
  8. Subject: Re: bank swapping
  9. Date: Fri Jul 14 20:37:05 1995
  10. Message-ID: <199507142037.AA04115@dragon.mbhs.edu>
  11. X-Mailer: MMail v4.23
  12. Status: RO
  13. X-Status: 
  14.  
  15. >I've a a huge load of bobs for a game I'm writing. They will not all fit
  16. >into one bank. I've split them up into several files.
  17. >
  18. >My trouble is that I can't seem to load them into the program into
  19. >different banks.
  20. >ie the first lines of my program are:
  21. >
  22. >Load "bobfile1.abk",1:rem works OK
  23. >Load "bobfile2.abk",20 :rem causes I/O error at line 95! when it only has 2
  24. >lines.
  25.  
  26.   The Load command uses the "bank" parameter differently.  (Once more,
  27. Francois shows his stupidity.)  Try this:
  28.  
  29. Load "bobfile1.abk",0 : Rem Load first set of bobs as a new bank
  30. Bank Swap 1,20 : Move it to another slot
  31. Load "bobfile2.bak",0 : Rem Load second set of bobs as a new bank
  32. Bank Swap 1,20 : Rem Swap first set back to bank 1 and second into bank 20
  33.  
  34. >Each file is 1528020 bytes long.
  35. >The finished program will have 6 banks this size and be swapped for super
  36. >smooth animation.
  37.  
  38.   And you have enough memory for all that?  I'd be lucky to fit three into
  39. my system. <sigh>
  40.  
  41.   --Andy Church (achurch@binx.mbhs.edu)
  42.     WWW: http://mmm.mbhs.edu/~achurch/
  43.     AMOS Web Site: http://mmm.mbhs.edu/~achurch/amos/